-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBellman Ford.cpp
88 lines (85 loc) · 1.81 KB
/
Bellman Ford.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#include<bits/stdc++.h>
using namespace std;
struct Edges
{
int source;
int destination;
int weight;
};
struct Graph
{
int numberOfNodes;
int numberOfEdges;
Edges e[100];
};
void printResult(int distance[], bool isNegativeCycles, int numberOfNodes, int sourceVertex)
{
if(isNegativeCycles == true)
{
cout<<"\nGraph contains Negative Cost Cycle!!";
}
else
{
int i;
cout<<"\nDistance of nodes from source vertex "<<sourceVertex<<" is : \n";
for(i=0; i<numberOfNodes; i++)
{
cout<<"Vertex : "<<i<<" Distance : "<<distance[i]<<endl;
}
}
}
void Bellman_Ford(Graph g)
{
int sourceVertex;
int distance[100];
bool isNegativeCycles = false;
int i,j;
int u,v,w; //graph variables
for(i=0;i<100;i++)
{
distance[i] = 100000; //an arbitrary infinite number. assuming weights<100000
}
cout<<"\nEnter the source Vertex : ";
cin>>sourceVertex;
distance[sourceVertex] = 0;
for(i=0; i<g.numberOfNodes-1; i++)
{
for(j=0; j<g.numberOfEdges; j++)
{
u = g.e[j].source;
v = g.e[j].destination;
w = g.e[j].weight;
if(distance[u]!=100000 && distance[v] > distance[u] + w)
{
distance[v] = distance[u] + w;
}
}
}
//checking negative cycles
for(i=0; i<g.numberOfEdges; i++)
{
u = g.e[i].source;
v = g.e[i].destination;
w = g.e[i].weight;
if(distance[v] > distance[u] + w)
{
isNegativeCycles = true;
break;
}
}
printResult(distance, isNegativeCycles, g.numberOfNodes, sourceVertex);
}
int main()
{
int i;
Graph g;
cout<<"\nEnter number of nodes and edges : ";
cin>>g.numberOfNodes;
cin>>g.numberOfEdges;
cout<<"\nEnter the source, destination, weight of the edges : \n";
for(i=0;i <g.numberOfEdges; i++)
{
cin>>g.e[i].source>>g.e[i].destination>>g.e[i].weight;
}
Bellman_Ford(g);
}